home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / 000066_blitz-list-request_Sun Jul 17 12:34:49 1994.msg < prev    next >
Internet Message Format  |  1994-09-20  |  3KB

  1. Received: from cix.compulink.co.uk (tom.compulink.co.uk [192.188.69.2]) by kantti.helsinki.fi (8.6.9/8.6.5) with SMTP id MAA27297 for <blitz-list@helsinki.fi>; Sun, 17 Jul 1994 12:34:22 +0300
  2. Received: from gonzales.compulink.co.uk (gonzales.compulink.co.uk [192.188.69.4]) by cix.compulink.co.uk (8.6.9/8.6.9) id KAA28954 for blitz-list@helsinki.fi; Sun, 17 Jul 1994 10:32:20 +0100
  3. Date: Sun, 17 Jul 94 10:31 BST-1
  4. From: gakennedy@cix.compulink.co.uk (Graham Kennedy)
  5. Subject: String/filecopy
  6. To: blitz-list@helsinki.fi
  7. Reply-To: gakennedy@cix.compulink.co.uk
  8. Message-Id: <memo.675285@cix.compulink.co.uk>
  9. MIME-Version: 1.0
  10. Content-Type: text/plain; charset="us-ascii"
  11. Content-Transfer-Encoding: 7bit
  12. X-Status: 
  13. Status: RO
  14.  
  15. To: Jurgen
  16.  
  17. > Can somebody tell me why this crashes my computer total and even a
  18. > reset doesn't work?
  19. Guru's mine as well, can't give you a reason though.
  20.  
  21. > I want to make a simple program what uses a string variabel as a
  22. > buffer for copying a file, somebody made it allready????
  23.  
  24. I think this is what you are after, does the job nicely (don't know
  25. how big blitz strings can be though, so may crash if a file is too big,
  26. with a bit of work you could split the file into manageable chunks and
  27. use the same command)
  28.  
  29. If OpenFile(0,"s:startup-sequence")
  30.     FileInput 0
  31.     in$=Inkey$(Lof(0))
  32.     DefaultOutput
  33.     NPrint in$
  34.     CloseFile 0
  35. EndIf
  36. MouseWait:End
  37.  
  38. -----------------------------------------------------------------------
  39. To: Nelson 
  40.  
  41. > Well, no one answered my last message about Screen Copying.
  42. If you want to post a bit of example code, I'll see if I can work out
  43. what is going on.
  44.  
  45. > True or False: You NEED a Screen in order to have a Bitmap.
  46. Erm, not too well up on this myself, but as far as I know a bitmap can
  47. exist without a screen, as you can create a bitmap, draw on it, then attach
  48. it to a screen. In BLITZ mode this can be displayed as is. In amiga mode I
  49. think it has to be attached to a screen.
  50.  
  51. > If this is FALSE, then I am lost, please explain WHY it's false.
  52. Dunno
  53.  
  54. > but how do I inhibit the user from pressing Left-Amiga-M to switch
  55. > screens?  BLITZ mode right?
  56. > But in Blitz mode, we can't use screens, or bring other screens
  57. > to the front of the display etc...  So how do I go about it?
  58. I havn't used blitz mode (I tend to stick to intuition etc) but as far as I
  59. am aware all the stuff you need is to do with manipulating the slices, but
  60. any further than that is beyond me.
  61.  
  62.  
  63.  
  64. Graham K.  
  65.